home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 1
/
Nebula One.iso
/
Utilities
/
Converters
/
Convert_FONT
/
Source
/
shared.subproj
/
RCS
/
ProgressInd.psw,v
< prev
next >
Wrap
Text File
|
1995-06-12
|
1KB
|
86 lines
head 1.3;
branch ;
access ;
symbols beta10:1.2;
locks death:1.3;
comment @@;
1.3
date 93.04.04.23.44.58; author death; state Exp;
branches ;
next 1.2;
1.2
date 93.01.10.15.08.38; author death; state Exp;
branches ;
next 1.1;
1.1
date 92.07.26.14.01.47; author death; state Exp;
branches ;
next ;
desc
@First revision of the ps code to draw an indicator circle...
@
1.3
log
@Sun Apr 4 23:44:58 PDT 1993
@
text
@
/*
routine: DrawIndicator
description: This Draws a NeXT-style percentage-done indicator
Draws: ??
*/
defineps DrawIndicator(double arcsize; float centerx, centery; double radius)
newpath
centerx centery moveto
centerx centery radius 90 arcsize sub 90 arc
closepath
0.333 setgray
gsave
fill
grestore
0 setgray
stroke
newpath
centerx centery radius 0 360 arc
0 setgray
stroke
endps
@
1.2
log
@Sun Jan 10 15:08:38 PST 1993
@
text
@@
1.1
log
@Initial revision
@
text
@d5 2
a10 6
centerx centery radius 90 360 arc
closepath
0 setgray
stroke
newpath
centerx centery moveto
d17 6
@